* lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 18 Jun 2011 18:32:22 +0000 (11:32 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 18 Jun 2011 18:32:22 +0000 (11:32 -0700)
This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
implementation.

src/ChangeLog
src/lisp.h

index a360badacf9e8aacf61ab7894e505f6ec341304d..3fc57818a237c13a230fa66d188ab1f588fd8452 100644 (file)
@@ -1,5 +1,9 @@
 2011-06-18  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
+       This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
+       implementation.
+
        * indent.c (sane_tab_width): New function.
        (current_column, scan_for_column, Findent_to, position_indentation)
        (compute_motion): Use it.  This is just for clarity.
index 0d51fc7be715e4bc309aae538b55325c6cc69558..7c9275e6078ad7463b8791bbdac21e4a6492e403 100644 (file)
@@ -291,7 +291,7 @@ union Lisp_Object
   {
     /* Used for comparing two Lisp_Objects;
        also, positive integers can be accessed fast this way.  */
-    EMACS_UINT i;
+    EMACS_INT i;
 
     struct
       {
@@ -315,7 +315,7 @@ union Lisp_Object
   {
     /* Used for comparing two Lisp_Objects;
        also, positive integers can be accessed fast this way.  */
-    EMACS_UINT i;
+    EMACS_INT i;
 
     struct
       {